Option Explicit
Sub Q_Sample023()
    ']wޥζMicrosoft Internet Controls
    Dim myIE As InternetExplorer
    Set myIE = New InternetExplorer
    With myIE
        .Visible = True
        .Navigate "http://www.drmaster.com.tw/"	'wURL
    End With
    Set myIE = Nothing						'
End Sub
